<!DOCTYPE html>

<html>

<head>

<title>Bouton de Chat</title>

</head>

<body>


<!-- Bouton Rouge -->

<button id="boutonChat" style="background-color: red; color: white; padding: 10px 20px; border: none; cursor: pointer;">Appuyez pour miauler</button>


<!-- Son de Chat (fichier audio.mp3) -->

<audio id="sonChat" src="chemin/vers/le/son/audio.mp3"></audio>


<script>

// Fonction pour jouer le son de chat

function jouerSonChat() {

  var son = document.getElementById("sonChat");

  son.play();

}


// Lier la fonction au clic sur le bouton

var bouton = document.getElementById("boutonChat");

bouton.addEventListener("click", jouerSonChat);

</script>


</body>

</html>